CStringStatus.cs
Code Type: C# Class
Uses Classes: N/A


Lines of Code: 18

public string Value

	 gets/sets the value string 

public CStringStatus() : base()

	 constructor initializes the members of the instance with default values 

public CStringStatus(bool bStatus, k_STATUS_CODE lStatusCode, string strStatusComment, string strValue)
            : base(bStatus, lStatusCode, strStatusComment)

	 constructor initializes the members of the instance with the passes values 

public CStringStatus(CStatus status, string strValue)
            :base(status.Status, status.StatusCode, status.StatusComment)

	  constructor initializes the members of the instance with the passes values 

	

